mount umount & /etc/fstab

mount
파일 시스템을 디렉터리 계층 구조의 특정 디렉터리와 연결- 마운트 포인티

/etc/fstab 파일에서 설정하여 부팅될 때 다종으로 파일 시스템이 마운트 되도록 설정

mount        # /etc/fstab 정보를 출력(마운트 정보 출력)
mount <part> <mp>    # 파티션 마운트 포인트 지정
mount --all    # /etc/fstab 의 정보 토대로 마운트

기타 옵션
mount <option>
mount-t <part> <mp> -o <opt>
umount <point>
마운트 포인트를 언마운트
터미널이 마운트 포인트에 위치할 경우, umount 실행시 "device is busy" 출력

기타 옵션
-f <point>    강제 수행(device is busy인 경우 불가능)
-l <point> or --lazy <point>   파일 시스템을 우선 detach한 후, clean up은 나중에 수행
fstab 등록
1. UUID
blkid -o list    를 통해 UUID를 얻음(혹은 /dev/<block device> 사용해도 무방)
2. /etc/fstab에 등록
ex)
UUID=<uuid> <mount point> <file system> <major> <minor>
/dev/<block device> <mount point> <file system> <major> <minor>